home *** CD-ROM | disk | FTP | other *** search
/ Turnbull China Bikeride / Turnbull China Bikeride - Disc 2.iso / STUTTGART / LANG / BASIC / LIB / EVENTSHELL / DOCS / Debug < prev    next >
Text File  |  1996-04-11  |  1KB  |  54 lines

  1. PROCshell_TraceExit
  2. =>    None
  3.  
  4. Closes the trace file if it is open. Normally
  5. only called by the EvntShell library when the
  6. application closes down.
  7.  
  8. --------------------------------------------------------
  9.  
  10. PROCshell_Tracef0()
  11. =>    str    trace output
  12.  
  13. Writes the given string into the trace file if
  14. it is open. If <PROCshell_TraceInit> was called
  15. with a null filename ("") then the trace output
  16. will be broadcast using Acorn's message system
  17. to be picked up and displayed by !ShellDBug if
  18. it is running.
  19.  
  20. --------------------------------------------------------
  21.  
  22. PROCshell_TraceInit()
  23. =>    str    file name for trace output
  24.          (can be "" - see below)
  25.  
  26. Initialises the trace file (must be called
  27. before any other trace functions). If the
  28. file name is "" then no file is opened, trace
  29. output is broadcast as a user message to be
  30. displayed by !ShellDBug.
  31.  
  32. --------------------------------------------------------
  33.  
  34. FNshell_TraceIsOn
  35. =>    None
  36.  
  37. <=    bool    TRUE if trace is enabled, FALSE
  38.          otherwise.
  39.  
  40. --------------------------------------------------------
  41.  
  42. PROCshell_TraceOff
  43. =>    None
  44.  
  45. Turns off trace output.
  46.  
  47. --------------------------------------------------------
  48.  
  49. PROCshell_TraceOn
  50. =>    None
  51.  
  52. Turns on trace output.
  53.  
  54. --------------------------------------------------------